home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Online / pgp263in010323 / config.txt next >
Text File  |  2002-10-27  |  5KB  |  131 lines

  1. # Sample config.txt file for PGP 2.6.3i.
  2. #
  3. # Blank lines are ignored, as is anything following a '#'.
  4. # Keywords are not case-sensitive.  
  5. # Whatever appears in here can be overridden on the command line,
  6. # by specifying (for example) "+armor=on".
  7.  
  8. # MyName is substring of default userid for secret key to make signatures.
  9. # If not set, PGP will use the first key on your secret keyring (the last
  10. # key you created) if you don't specify the user with -u
  11. # MyName = "John Q. Public"
  12.  
  13. # MyEtsId is substring of default userid for public key to encrypt to self
  14. # If not set, PGP will use the first key on your secret keyring (the last
  15. # key you created) if you don't specify the user with -u
  16. # MyEtsId = "John Q. Public"
  17.  
  18. # The language we will be using for displaying messages to the user.  
  19. #
  20. # Available languages:
  21. #   en = English (default)
  22. #   es = Spanish, fr = French, de = German, it = Italian,
  23. #   sv = Swedish, da = Danish, no = Norwegian, fi = Finnish,
  24. #   nl = Dutch, pl = Polish, ru = Russian, el = Greek,
  25. #   cz = Czech, ro = Romanian, hu = Hungarian, sr = Serbian,
  26. #   br = Brazilian Portuguese, lt = Lithuanian, ja = Japanese
  27. #
  28. # Language modules may be obtained from:
  29. #   http://www.ifi.uio.no/pgp/modules.shtml
  30. #   ftp://ftp.ifi.uio.no/pub/pgp/lang/
  31. #
  32. # Languages not yet available:
  33. #   ar = Arabic, iw = Hebrew, tr = Turkish, lv = Latvian, ko = Korean,
  34. #   pt = Portugese, is = Icelandic, zh = Chinese, esp = Esperanto
  35. #
  36. # Most of these codes are the ISO 639-1988 2-letter "Codes for
  37. # Representation of Names of Languages"
  38. Language = en
  39.  
  40. # Character set for displaying messages and for conversion of text files.
  41. # If you set this variable to anything else than latin1, koi8 or noconv,
  42. # PGP will do character set conversions if TextMode = on or if you specify
  43. # the -t option when encrypting or signing a file.
  44. # Available character sets:
  45. #
  46. #   latin1    - ISO-Latin/1      (ISO 8859/1)
  47. #   cp850     - IBM codepage 850 (International)
  48. #   cp852     - IBM codepage 852 (Eastern Europe)
  49. #   cp860     - IBM codepage 860 (Portuguese)
  50. #   cp866     - IBM codepage 866 (Russian)
  51. #   alt_codes - Cyrillic         (Russian)
  52. #   koi8      - Cyrillic         (Russian)
  53. #   keybcs2   - KEYBCS 2         (Eastern Europe)
  54. #   next      - NeXTSTEP
  55. #   mac       - Macintosh
  56. #   ascii     - 7-bit ASCII
  57. #
  58. # For MSDOS with a standard character set you should use cp850 to get
  59. # correct character translations.  Russian character sets for MSDOS are
  60. # usually alt_codes.
  61. #
  62. # Note that noconv, latin1, and koi8 are all treated as equivalent.
  63. # Also note that cp852 and keybcs2 convert to/from latin2 rather that
  64. # latin1.
  65. #
  66. # CharSet = cp850
  67.  
  68. # TMP is the directory name for PGP scratch files, usually a RAM disk.
  69. # It can be overridden by the environment variable TMP.
  70. # TMP = "e:\"
  71.  
  72. # Pager is the file viewing program used for viewing messages with -m
  73. # If not set or set to "pgp", a built-in pager will be used.  The pager set
  74. # in config.txt will override the environment variable PAGER.
  75. # Pager = "list"
  76.  
  77. # ArmorLines is the maximum number of lines per packet when creating a
  78. # transport armored file.  Set to 0 to disable splitting in parts.
  79. ArmorLines = 0
  80.  
  81. # The following commented-out settings are *not* the defaults.
  82. # Uncomment (remove the leading "#" character) them to get the
  83. # non-default behaviour indicated.
  84.  
  85. # Armor = on          # Use -a flag for ASCII armor whenever applicable
  86. # TextMode = on       # Attempt to use -t option where applicable
  87. # ClearSig = off      # Use ASCII armor even for unencrypted signed messages
  88. # KeepBinary = on     # Decrypt will not delete intermediate .pgp file
  89. # Verbose = 2         # Verbose diagnostic messages
  90. # Verbose = 0         # Be quiet
  91. # Compress = off      # Suppress compression to aid debugging
  92. # ShowPass = on       # Echo password when user types it
  93. # Interactive = on    # Interactively prompt the user when adding keys (-ka)
  94. # EncryptToSelf = on  # Encrypt all messages with your own public key
  95. # AutoSign = off      # Don't sign new userids
  96. # Legal_Kludge = off  # Use backwards-compatible format
  97. # Unknown_Certs = on  # Show certificates from unknown keys
  98.  
  99. # BakRing is the path to a backup copy of your secret keyring, usually
  100. # on floppy disk.  Your secret keys will be compared with the backup copy
  101. # when doing a keyring check (pgp -kc)
  102. # BakRing = "a:\secring.pgp"
  103.  
  104. # Number of completely trusted signatures needed to make a key valid.
  105. Completes_Needed = 1
  106.  
  107. # Number of marginally trusted signatures needed to make a key valid.
  108. Marginals_Needed = 2
  109.  
  110. # How many levels of introducers may introduce other introducers.
  111. Cert_Depth = 4
  112.  
  113. # TZFix is hours to add to time() to get GMT, for GMT timestamps.
  114. # Since MSDOS assumes local time is US Pacific time, and pre-corrects 
  115. # Pacific time to GMT, make TZFix=0 for California, -1 for Colorado, 
  116. # -2 for Chicago, -3 for NY, -8 for London, -9 for Amsterdam.  
  117. # However, if your MSDOS environmental variable TZ is properly defined 
  118. # for your timezone, you can leave TZFix=0.  Unix systems probably 
  119. # shouldn't need to worry about setting TZFix.
  120. # TZFix = 0
  121.  
  122. # Paths to keyrings and seed file for random generator.
  123. # PubRing = "a:\pubring.pgp"
  124. # SecRing = "a:\secring.pgp"
  125. # RandSeed = "a:\randseed.bin"
  126.  
  127. # Add optional comment to ASCII armor output.
  128. # Comment = "Requires PGP version 2.6 or later."
  129.